home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / test / lib / exit.c < prev    next >
C/C++ Source or Header  |  1992-11-23  |  141b  |  17 lines

  1.  
  2. /*
  3.  *
  4.  */
  5.  
  6. #include <stdio.h>
  7.  
  8. main(ac, av)
  9. char *av[];
  10. {
  11.     if (ac == 1) {
  12.     puts("exit <code>");
  13.     exit(1);
  14.     }
  15.     exit(atoi(av[1]));
  16. }
  17.